home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue52 / HTML / Code / WinClient / Main.dfm / Main.txt
Encoding:
Text File  |  1999-10-26  |  2.5 KB  |  132 lines

  1. object frmMain: TfrmMain
  2.   Left = 277
  3.   Top = 109
  4.   Width = 681
  5.   Height = 539
  6.   Caption = 'SML Test Client'
  7.   Color = clBtnFace
  8.   Font.Charset = DEFAULT_CHARSET
  9.   Font.Color = clWindowText
  10.   Font.Height = -11
  11.   Font.Name = 'MS Sans Serif'
  12.   Font.Style = []
  13.   OldCreateOrder = False
  14.   Position = poScreenCenter
  15.   PixelsPerInch = 96
  16.   TextHeight = 13
  17.   object Label2: TLabel
  18.     Left = 8
  19.     Top = 35
  20.     Width = 84
  21.     Height = 13
  22.     Caption = 'Template Source:'
  23.   end
  24.   object Label3: TLabel
  25.     Left = 474
  26.     Top = 34
  27.     Width = 46
  28.     Height = 13
  29.     Caption = 'Variables:'
  30.   end
  31.   object Label1: TLabel
  32.     Left = 10
  33.     Top = 12
  34.     Width = 32
  35.     Height = 13
  36.     Caption = 'Label1'
  37.   end
  38.   object memTemplate: TMemo
  39.     Left = 8
  40.     Top = 50
  41.     Width = 456
  42.     Height = 152
  43.     Font.Charset = DEFAULT_CHARSET
  44.     Font.Color = clWindowText
  45.     Font.Height = -11
  46.     Font.Name = 'Courier New'
  47.     Font.Style = []
  48.     ParentFont = False
  49.     ScrollBars = ssBoth
  50.     TabOrder = 0
  51.   end
  52.   object memVariables: TMemo
  53.     Left = 473
  54.     Top = 50
  55.     Width = 188
  56.     Height = 150
  57.     TabOrder = 1
  58.     WordWrap = False
  59.   end
  60.   object btnGetPage: TButton
  61.     Left = 10
  62.     Top = 210
  63.     Width = 75
  64.     Height = 25
  65.     Caption = 'Get Page'
  66.     TabOrder = 2
  67.     OnClick = btnGetPageClick
  68.   end
  69.   object btnLoad: TButton
  70.     Left = 185
  71.     Top = 8
  72.     Width = 99
  73.     Height = 25
  74.     Caption = 'Load from File'
  75.     TabOrder = 3
  76.     OnClick = btnLoadClick
  77.   end
  78.   object edtFilename: TEdit
  79.     Left = 54
  80.     Top = 9
  81.     Width = 121
  82.     Height = 21
  83.     TabOrder = 4
  84.   end
  85.   object btnSave: TButton
  86.     Left = 97
  87.     Top = 210
  88.     Width = 75
  89.     Height = 25
  90.     Caption = 'Save'
  91.     TabOrder = 5
  92.     OnClick = btnSaveClick
  93.   end
  94.   object Panel1: TPanel
  95.     Left = 8
  96.     Top = 245
  97.     Width = 655
  98.     Height = 261
  99.     BevelWidth = 2
  100.     Caption = 'Panel1'
  101.     TabOrder = 6
  102.     object memSource: TMemo
  103.       Left = 2
  104.       Top = 2
  105.       Width = 651
  106.       Height = 257
  107.       Align = alClient
  108.       Lines.Strings = (
  109.         'memSource')
  110.       ScrollBars = ssBoth
  111.       TabOrder = 0
  112.     end
  113.   end
  114.   object OpenDialog: TOpenDialog
  115.     DefaultExt = 'SML'
  116.     Filter = 
  117.       'HTML files (*.html)|*.html|SML files (*.sml)|*.sml|All files (*.' +
  118.       '*)|*.*'
  119.     FilterIndex = 2
  120.     InitialDir = '..\..\www\pages'
  121.     Left = 80
  122.     Top = 60
  123.   end
  124.   object SaveDialog: TSaveDialog
  125.     DefaultExt = 'HTML'
  126.     FileName = 'output.html'
  127.     Options = [ofOverwritePrompt, ofHideReadOnly, ofEnableSizing]
  128.     Left = 193
  129.     Top = 209
  130.   end
  131. end
  132.